home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 18
/
CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso
/
CUCD
/
Programming
/
AmigaE
/
Src
/
Gfx
/
IfsFern.e
< prev
next >
Wrap
Text File
|
1992-09-02
|
1KB
|
57 lines
/* iterated affine transformations
gets you a leaf on the screen in a rather special way.
be patient: it may take some time for you to actually see something.
*/
OPT OSVERSION=39 /* oh, and we need a 640*512*256 screen */
CONST SCRX=740, SCRY=580, PLANES=8
OBJECT trans
a,b,c,d,ox,oy,prob
ENDOBJECT
DEF win,scr
PROC main()
DEF a
scr:=OpenS(SCRX,SCRY,PLANES,$8004,'Fern')
IF scr=NIL
WriteF('Could not open screen!\n')
ELSE
win:=OpenW(0,0,SCRX-1,SCRY-1,$200,$F,'Fern',scr,15,NIL)
IF win=NIL
WriteF('Could not open window!\n')
ELSE
FOR a:=0 TO 255 DO SetColour(scr,a,a,a,a)
do([[ .0, .0, .0, .16,.0, .0, 1 ]:trans, -> back to the root!
[ .2, .23,(-.26),.22,.0,1.6, 7 ]:trans, -> right leaf
[(-.15), .26, .28, .24,.0, .44,7 ]:trans, -> left leaf
[ .85,(-.04), .04, .85,.0,1.6, 85]:trans]) -> body
->WaitIMessage(win)
CloseW(win)
ENDIF
CloseS(scr)
ENDIF
ENDPROC
PROC do(t:PTR TO LONG)
DEF x=1.,y=1.,r,n,a,tr:PTR TO trans,xn,yn,sx,sy,d
REPEAT
r:=Rnd(100)
n:=0
FOR a:=1 TO ListLen(t)
tr:=t[a-1]
EXIT (r>=n) AND (tr.prob+n>r)
n:=n+tr.prob
ENDFOR
sx:=!(xn:=!(!tr.a*x)+(!tr.c*y)+tr.ox)*60.!+(SCRX/2)
sy:=SCRY-(!(yn:=!(!tr.b*x)+(!tr.d*y)+tr.oy)*50.!)
d:=Bounds(ReadPixel(stdrast,sx,sy)+20,64,255)
Plot(sx,sy,d)
x:=xn; y:=yn
UNTIL LeftMouse(win)
ENDPROC